home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 06 - 1990 / 06.08 Aug 90 / Test Object Source / Test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-06  |  303 b   |  20 lines  |  [TEXT/KAHL]

  1. /*****
  2.  * Wave.c
  3.  *
  4.  *    Wave main file using the THINK Class Library
  5.  *  © 1989 by Enrico Colombini
  6.  *
  7.  *****/
  8. #include "CWaveApp.h"
  9.  
  10. extern    CApplication    *gApplication;
  11.  
  12. void main()
  13.  
  14. {
  15.     gApplication = new(CWaveApp);
  16.     ((CWaveApp *)gApplication)->IWaveApp();
  17.     gApplication->Run();
  18.     gApplication->Exit();
  19. }
  20.